sampler2D BaseTexture : register(s0);

struct PS_IN
{
   float4 ProjPos  : POSITION;
   float2 UV0 : TEXCOORD0;
};

float4 ps_main( PS_IN In ) : COLOR
{
   float4 diffuse = tex2D(BaseTexture, In.UV0);
   return diffuse;
}